home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / pcr / pcr4_4.lha / DIST / gc / makefile < prev    next >
Makefile  |  1992-04-17  |  23KB  |  605 lines

  1. #
  2. # PCR lower-level makefile for gc
  3. #
  4. # Demers, April 3, 1989 1:00:14 pm PDT
  5. # Ishigo, November 7, 1988 2:52:30 pm PST
  6. # Weiser, June 28, 1989
  7. # Boehm, December 13, 1991 1:29:03 pm PST
  8. #
  9.  
  10. #
  11. # WARNING -- I THINK THE `specialos' STUFF IS BROKEN - ajd
  12. #
  13.  
  14. #
  15. # READ the comments in makefile.common!
  16. #
  17.  
  18. INCLUDE = GC.h GCPrivate.h GCVirtualDirty.h
  19. BIN = 
  20. OBJ = gc.o
  21. LIB = GCptr_test.o GCenum_objs.o GCfast_malloc.o GCconstrained_malloc.o
  22. LIBA =
  23. MAN = 
  24. CLEANUPFILES = ppcr pcrtest
  25.  
  26. #
  27. # Private flags (to be part of CONFIG_CFLAGS in makefile.config):
  28. #
  29. # -DPRINTSTATS causes gc to keep (and print) statistics
  30. # -DFINALIZE do finalization
  31. #
  32.  
  33. CFILES0 = GCalloc.c GCreclaim.c GCallochblk.c GCmalloc.c GCfinalize.c\
  34.     GCdata_list.c GCOSDependent.c GCmark.c GCutilities.c GCUnixInterface.c \
  35.     GCglobals.c GCmach_dep.c GChblkmap.c GChdr_alloc.c \
  36.     GCmark_rescuers.c GCmark_roots.c GCCommands.c GCdirty.c GCstrategy.c \
  37.     GCcollector.c GCVirtualDirty.c GCblack_list.c
  38.     
  39. CFILES1 = GCptr_test.c GCenum_objs.c
  40.  
  41. OFILES0 = GCalloc.o GCallochblk.o GCreclaim.o GCmalloc.o GCfinalize.o\
  42.     GCdata_list.o GCOSDependent.o GCmark.o GCutilities.o GCUnixInterface.o \
  43.     GCglobals.o GCmach_dep.o GChblkmap.o GChdr_alloc.o \
  44.     GCmark_rescuers.o GCmark_roots.o GCCommands.o GCdirty.o GCstrategy.o \
  45.     GCcollector.o GCVirtualDirty.o GCblack_list.o
  46.  
  47.  
  48. MAKE_DEPEND_SRC = ${CFILES0} ${CFILES1}
  49.  
  50. include makefile.config
  51. include ../makefile.common
  52.  
  53.  
  54. #
  55. #
  56.  
  57. #
  58. # targets
  59. #
  60.  
  61. notarget: gc.o $(LIB)
  62.  
  63. gc.o: ${OFILES0} ${VERSION_DOT_O}
  64.     -ld -r -o gc.o ${VERSION_DOT_O} ${OFILES0}
  65.     
  66. pcrtest: gc.o
  67.     cc -g -Bstatic -o pcrtest \
  68.         ../LIB/${CONFIG_DIR}/XRRoot.o gc.o ../threads/threads.o \
  69.         ../LIB/${CONFIG_DIR}/xr.a
  70. #
  71. #    cc -g -Bstatic -o pcrtest \
  72. #        ../LIB/${CONFIG_DIR}/XRRoot.o gc.o ../LIB/${CONFIG_DIR}/xr.a
  73.  
  74.  
  75.  
  76. #
  77. # rules for specific objects:
  78. #
  79.  
  80. # Force maximum optimization for GCmark and GCreclaim:
  81. GCmark.o: GCmark.c
  82.     cc $(AFLAGS) -c -O4 GCmark.c
  83.     
  84. GCreclaim.o: GCreclaim.c
  85.     cc $(AFLAGS) -c -O4 GCreclaim.c
  86.  
  87. # Force cpp to be run.  This actually depends implicitly on other include files that aren't
  88. # suitable for inclusion in a .s file.  Needs to be fixed if monitor locks change.
  89. GCfast_malloc.o: GCfast_malloc.s
  90.     as -P -o GCfast_malloc.o GCfast_malloc.s
  91.  
  92. $(OFILES0): makefile.config
  93.  
  94. #
  95. # DO NOT DELETE THIS LINE -- MAKE DEPEND DEPENDS ON IT BEING HERE!
  96. GCalloc.o: GCalloc.c
  97. GCalloc.o: /usr/include/signal.h
  98. GCalloc.o: /usr/include/sys/signal.h
  99. GCalloc.o: /usr/include/vm/faultcode.h
  100. GCalloc.o: /usr/include/sys/stdtypes.h
  101. GCalloc.o: /usr/include/sys/types.h
  102. GCalloc.o: /usr/include/sys/stdtypes.h
  103. GCalloc.o: /usr/include/sys/sysmacros.h
  104. GCalloc.o: /usr/include/sys/times.h
  105. GCalloc.o: /usr/include/sys/types.h
  106. GCalloc.o: /usr/include/sys/timeb.h
  107. GCalloc.o: INCLUDE/xr/GCPrivate.h
  108. GCalloc.o: INCLUDE/xr/GC.h
  109. GCalloc.o: ../INCLUDE/xr/BasicTypes.h
  110. GCalloc.o: ../INCLUDE/xr/Threads.h
  111. GCalloc.o: ../INCLUDE/xr/ThreadsInlines.h
  112. GCalloc.o: ../INCLUDE/xr/ThreadsSharedMem.h
  113. GCalloc.o: ../INCLUDE/xr/ThreadsBackdoor.h
  114. GCalloc.o: /usr/include/sys/time.h
  115. GCalloc.o: /usr/include/time.h
  116. GCalloc.o: /usr/include/sys/stdtypes.h
  117. GCalloc.o: /usr/include/sys/param.h
  118. GCalloc.o: /usr/include/machine/param.h
  119. GCalloc.o: /usr/include/sys/signal.h
  120. GCalloc.o: /usr/include/sys/types.h
  121. GCreclaim.o: GCreclaim.c
  122. GCreclaim.o: INCLUDE/xr/GCPrivate.h
  123. GCreclaim.o: INCLUDE/xr/GC.h
  124. GCreclaim.o: ../INCLUDE/xr/BasicTypes.h
  125. GCreclaim.o: ../INCLUDE/xr/Threads.h
  126. GCreclaim.o: ../INCLUDE/xr/ThreadsInlines.h
  127. GCreclaim.o: ../INCLUDE/xr/ThreadsSharedMem.h
  128. GCreclaim.o: ../INCLUDE/xr/ThreadsBackdoor.h
  129. GCreclaim.o: /usr/include/sys/time.h
  130. GCreclaim.o: /usr/include/time.h
  131. GCreclaim.o: /usr/include/sys/stdtypes.h
  132. GCreclaim.o: /usr/include/sys/param.h
  133. GCreclaim.o: /usr/include/machine/param.h
  134. GCreclaim.o: /usr/include/sys/signal.h
  135. GCreclaim.o: /usr/include/vm/faultcode.h
  136. GCreclaim.o: /usr/include/sys/stdtypes.h
  137. GCreclaim.o: /usr/include/sys/types.h
  138. GCreclaim.o: /usr/include/sys/stdtypes.h
  139. GCreclaim.o: /usr/include/sys/sysmacros.h
  140. GCreclaim.o: ../INCLUDE/xr/Threads.h
  141. GCallochblk.o: GCallochblk.c
  142. GCallochblk.o: INCLUDE/xr/GCPrivate.h
  143. GCallochblk.o: INCLUDE/xr/GC.h
  144. GCallochblk.o: ../INCLUDE/xr/BasicTypes.h
  145. GCallochblk.o: ../INCLUDE/xr/Threads.h
  146. GCallochblk.o: ../INCLUDE/xr/ThreadsInlines.h
  147. GCallochblk.o: ../INCLUDE/xr/ThreadsSharedMem.h
  148. GCallochblk.o: ../INCLUDE/xr/ThreadsBackdoor.h
  149. GCallochblk.o: /usr/include/sys/time.h
  150. GCallochblk.o: /usr/include/time.h
  151. GCallochblk.o: /usr/include/sys/stdtypes.h
  152. GCallochblk.o: /usr/include/sys/param.h
  153. GCallochblk.o: /usr/include/machine/param.h
  154. GCallochblk.o: /usr/include/sys/signal.h
  155. GCallochblk.o: /usr/include/vm/faultcode.h
  156. GCallochblk.o: /usr/include/sys/stdtypes.h
  157. GCallochblk.o: /usr/include/sys/types.h
  158. GCallochblk.o: /usr/include/sys/stdtypes.h
  159. GCallochblk.o: /usr/include/sys/sysmacros.h
  160. GCallochblk.o: ../INCLUDE/xr/Threads.h
  161. GCallochblk.o: ../INCLUDE/xr/ThreadsMsg.h
  162. GCmalloc.o: GCmalloc.c
  163. GCmalloc.o: /usr/include/signal.h
  164. GCmalloc.o: /usr/include/sys/signal.h
  165. GCmalloc.o: /usr/include/vm/faultcode.h
  166. GCmalloc.o: /usr/include/sys/stdtypes.h
  167. GCmalloc.o: INCLUDE/xr/GCPrivate.h
  168. GCmalloc.o: INCLUDE/xr/GC.h
  169. GCmalloc.o: ../INCLUDE/xr/BasicTypes.h
  170. GCmalloc.o: ../INCLUDE/xr/Threads.h
  171. GCmalloc.o: ../INCLUDE/xr/ThreadsInlines.h
  172. GCmalloc.o: ../INCLUDE/xr/ThreadsSharedMem.h
  173. GCmalloc.o: ../INCLUDE/xr/ThreadsBackdoor.h
  174. GCmalloc.o: /usr/include/sys/time.h
  175. GCmalloc.o: /usr/include/time.h
  176. GCmalloc.o: /usr/include/sys/stdtypes.h
  177. GCmalloc.o: /usr/include/sys/param.h
  178. GCmalloc.o: /usr/include/machine/param.h
  179. GCmalloc.o: /usr/include/sys/signal.h
  180. GCmalloc.o: /usr/include/sys/types.h
  181. GCmalloc.o: /usr/include/sys/stdtypes.h
  182. GCmalloc.o: /usr/include/sys/sysmacros.h
  183. GCmalloc.o: ../INCLUDE/xr/ThreadsMsg.h
  184. GCfinalize.o: GCfinalize.c
  185. GCfinalize.o: ../INCLUDE/xr/Errno.h
  186. GCfinalize.o: /usr/include/errno.h
  187. GCfinalize.o: /usr/include/sys/errno.h
  188. GCfinalize.o: INCLUDE/xr/GCPrivate.h
  189. GCfinalize.o: INCLUDE/xr/GC.h
  190. GCfinalize.o: ../INCLUDE/xr/BasicTypes.h
  191. GCfinalize.o: ../INCLUDE/xr/Threads.h
  192. GCfinalize.o: ../INCLUDE/xr/ThreadsInlines.h
  193. GCfinalize.o: ../INCLUDE/xr/ThreadsSharedMem.h
  194. GCfinalize.o: ../INCLUDE/xr/ThreadsBackdoor.h
  195. GCfinalize.o: /usr/include/sys/time.h
  196. GCfinalize.o: /usr/include/time.h
  197. GCfinalize.o: /usr/include/sys/stdtypes.h
  198. GCfinalize.o: /usr/include/sys/param.h
  199. GCfinalize.o: /usr/include/machine/param.h
  200. GCfinalize.o: /usr/include/sys/signal.h
  201. GCfinalize.o: /usr/include/vm/faultcode.h
  202. GCfinalize.o: /usr/include/sys/stdtypes.h
  203. GCfinalize.o: /usr/include/sys/types.h
  204. GCfinalize.o: /usr/include/sys/stdtypes.h
  205. GCfinalize.o: /usr/include/sys/sysmacros.h
  206. GCfinalize.o: ../INCLUDE/xr/ThreadsMsg.h
  207. GCdata_list.o: GCdata_list.c
  208. GCdata_list.o: INCLUDE/xr/GCPrivate.h
  209. GCdata_list.o: INCLUDE/xr/GC.h
  210. GCdata_list.o: ../INCLUDE/xr/BasicTypes.h
  211. GCdata_list.o: ../INCLUDE/xr/Threads.h
  212. GCdata_list.o: ../INCLUDE/xr/ThreadsInlines.h
  213. GCdata_list.o: ../INCLUDE/xr/ThreadsSharedMem.h
  214. GCdata_list.o: ../INCLUDE/xr/ThreadsBackdoor.h
  215. GCdata_list.o: /usr/include/sys/time.h
  216. GCdata_list.o: /usr/include/time.h
  217. GCdata_list.o: /usr/include/sys/stdtypes.h
  218. GCdata_list.o: /usr/include/sys/param.h
  219. GCdata_list.o: /usr/include/machine/param.h
  220. GCdata_list.o: /usr/include/sys/signal.h
  221. GCdata_list.o: /usr/include/vm/faultcode.h
  222. GCdata_list.o: /usr/include/sys/stdtypes.h
  223. GCdata_list.o: /usr/include/sys/types.h
  224. GCdata_list.o: /usr/include/sys/stdtypes.h
  225. GCdata_list.o: /usr/include/sys/sysmacros.h
  226. GCOSDependent.o: GCOSDependent.c
  227. GCOSDependent.o: /usr/include/sys/time.h
  228. GCOSDependent.o: /usr/include/time.h
  229. GCOSDependent.o: /usr/include/sys/stdtypes.h
  230. GCOSDependent.o: INCLUDE/xr/GCPrivate.h
  231. GCOSDependent.o: INCLUDE/xr/GC.h
  232. GCOSDependent.o: ../INCLUDE/xr/BasicTypes.h
  233. GCOSDependent.o: ../INCLUDE/xr/Threads.h
  234. GCOSDependent.o: ../INCLUDE/xr/ThreadsInlines.h
  235. GCOSDependent.o: ../INCLUDE/xr/ThreadsSharedMem.h
  236. GCOSDependent.o: ../INCLUDE/xr/ThreadsBackdoor.h
  237. GCOSDependent.o: /usr/include/sys/time.h
  238. GCOSDependent.o: /usr/include/sys/param.h
  239. GCOSDependent.o: /usr/include/machine/param.h
  240. GCOSDependent.o: /usr/include/sys/signal.h
  241. GCOSDependent.o: /usr/include/vm/faultcode.h
  242. GCOSDependent.o: /usr/include/sys/stdtypes.h
  243. GCOSDependent.o: /usr/include/sys/types.h
  244. GCOSDependent.o: /usr/include/sys/stdtypes.h
  245. GCOSDependent.o: /usr/include/sys/sysmacros.h
  246. GCOSDependent.o: ../INCLUDE/xr/Threads.h
  247. GCOSDependent.o: ../INCLUDE/xr/ThreadsBackdoor.h
  248. GCOSDependent.o: ../INCLUDE/xr/ThreadsSchedCtl.h
  249. GCOSDependent.o: ../INCLUDE/xr/BasicTypes.h
  250. GCOSDependent.o: ../INCLUDE/xr/ThreadsMsg.h
  251. GCmark.o: GCmark.c
  252. GCmark.o: /usr/include/signal.h
  253. GCmark.o: /usr/include/sys/signal.h
  254. GCmark.o: /usr/include/vm/faultcode.h
  255. GCmark.o: /usr/include/sys/stdtypes.h
  256. GCmark.o: /usr/include/sys/types.h
  257. GCmark.o: /usr/include/sys/stdtypes.h
  258. GCmark.o: /usr/include/sys/sysmacros.h
  259. GCmark.o: /usr/include/sys/times.h
  260. GCmark.o: /usr/include/sys/types.h
  261. GCmark.o: /usr/include/sys/time.h
  262. GCmark.o: /usr/include/time.h
  263. GCmark.o: /usr/include/sys/stdtypes.h
  264. GCmark.o: /usr/include/sys/resource.h
  265. GCmark.o: /usr/include/sys/timeb.h
  266. GCmark.o: INCLUDE/xr/GCPrivate.h
  267. GCmark.o: INCLUDE/xr/GC.h
  268. GCmark.o: ../INCLUDE/xr/BasicTypes.h
  269. GCmark.o: ../INCLUDE/xr/Threads.h
  270. GCmark.o: ../INCLUDE/xr/ThreadsInlines.h
  271. GCmark.o: ../INCLUDE/xr/ThreadsSharedMem.h
  272. GCmark.o: ../INCLUDE/xr/ThreadsBackdoor.h
  273. GCmark.o: /usr/include/sys/time.h
  274. GCmark.o: /usr/include/sys/param.h
  275. GCmark.o: /usr/include/machine/param.h
  276. GCmark.o: /usr/include/sys/signal.h
  277. GCmark.o: /usr/include/sys/types.h
  278. GCmark.o: ../INCLUDE/xr/Threads.h
  279. GCmark.o: ./GCcheck_ptr.c
  280. GCmark.o: ./GCcheck_ptr.c
  281. GCutilities.o: GCutilities.c
  282. GCutilities.o: INCLUDE/xr/GCPrivate.h
  283. GCutilities.o: INCLUDE/xr/GC.h
  284. GCutilities.o: ../INCLUDE/xr/BasicTypes.h
  285. GCutilities.o: ../INCLUDE/xr/Threads.h
  286. GCutilities.o: ../INCLUDE/xr/ThreadsInlines.h
  287. GCutilities.o: ../INCLUDE/xr/ThreadsSharedMem.h
  288. GCutilities.o: ../INCLUDE/xr/ThreadsBackdoor.h
  289. GCutilities.o: /usr/include/sys/time.h
  290. GCutilities.o: /usr/include/time.h
  291. GCutilities.o: /usr/include/sys/stdtypes.h
  292. GCutilities.o: /usr/include/sys/param.h
  293. GCutilities.o: /usr/include/machine/param.h
  294. GCutilities.o: /usr/include/sys/signal.h
  295. GCutilities.o: /usr/include/vm/faultcode.h
  296. GCutilities.o: /usr/include/sys/stdtypes.h
  297. GCutilities.o: /usr/include/sys/types.h
  298. GCutilities.o: /usr/include/sys/stdtypes.h
  299. GCutilities.o: /usr/include/sys/sysmacros.h
  300. GCUnixInterface.o: GCUnixInterface.c
  301. GCUnixInterface.o: INCLUDE/xr/GC.h
  302. GCUnixInterface.o: ../INCLUDE/xr/BasicTypes.h
  303. GCUnixInterface.o: ../INCLUDE/xr/Threads.h
  304. GCUnixInterface.o: ../INCLUDE/xr/ThreadsInlines.h
  305. GCUnixInterface.o: ../INCLUDE/xr/ThreadsSharedMem.h
  306. GCUnixInterface.o: ../INCLUDE/xr/ThreadsSharedMem.h
  307. GCUnixInterface.o: ../INCLUDE/xr/Threads.h
  308. GCglobals.o: GCglobals.c
  309. GCglobals.o: INCLUDE/xr/GCPrivate.h
  310. GCglobals.o: INCLUDE/xr/GC.h
  311. GCglobals.o: ../INCLUDE/xr/BasicTypes.h
  312. GCglobals.o: ../INCLUDE/xr/Threads.h
  313. GCglobals.o: ../INCLUDE/xr/ThreadsInlines.h
  314. GCglobals.o: ../INCLUDE/xr/ThreadsSharedMem.h
  315. GCglobals.o: ../INCLUDE/xr/ThreadsBackdoor.h
  316. GCglobals.o: /usr/include/sys/time.h
  317. GCglobals.o: /usr/include/time.h
  318. GCglobals.o: /usr/include/sys/stdtypes.h
  319. GCglobals.o: /usr/include/sys/param.h
  320. GCglobals.o: /usr/include/machine/param.h
  321. GCglobals.o: /usr/include/sys/signal.h
  322. GCglobals.o: /usr/include/vm/faultcode.h
  323. GCglobals.o: /usr/include/sys/stdtypes.h
  324. GCglobals.o: /usr/include/sys/types.h
  325. GCglobals.o: /usr/include/sys/stdtypes.h
  326. GCglobals.o: /usr/include/sys/sysmacros.h
  327. GCglobals.o: INCLUDE/xr/GCVirtualDirty.h
  328. GCglobals.o: ../INCLUDE/xr/Threads.h
  329. GCmach_dep.o: GCmach_dep.c
  330. GCmach_dep.o: INCLUDE/xr/GCPrivate.h
  331. GCmach_dep.o: INCLUDE/xr/GC.h
  332. GCmach_dep.o: ../INCLUDE/xr/BasicTypes.h
  333. GCmach_dep.o: ../INCLUDE/xr/Threads.h
  334. GCmach_dep.o: ../INCLUDE/xr/ThreadsInlines.h
  335. GCmach_dep.o: ../INCLUDE/xr/ThreadsSharedMem.h
  336. GCmach_dep.o: ../INCLUDE/xr/ThreadsBackdoor.h
  337. GCmach_dep.o: /usr/include/sys/time.h
  338. GCmach_dep.o: /usr/include/time.h
  339. GCmach_dep.o: /usr/include/sys/stdtypes.h
  340. GCmach_dep.o: /usr/include/sys/param.h
  341. GCmach_dep.o: /usr/include/machine/param.h
  342. GCmach_dep.o: /usr/include/sys/signal.h
  343. GCmach_dep.o: /usr/include/vm/faultcode.h
  344. GCmach_dep.o: /usr/include/sys/stdtypes.h
  345. GCmach_dep.o: /usr/include/sys/types.h
  346. GCmach_dep.o: /usr/include/sys/stdtypes.h
  347. GCmach_dep.o: /usr/include/sys/sysmacros.h
  348. GCmach_dep.o: /usr/include/setjmp.h
  349. GCmach_dep.o: /usr/include/machine/setjmp.h
  350. GCmach_dep.o: /usr/include/sun4/trap.h
  351. GChblkmap.o: GChblkmap.c
  352. GChblkmap.o: INCLUDE/xr/GCPrivate.h
  353. GChblkmap.o: INCLUDE/xr/GC.h
  354. GChblkmap.o: ../INCLUDE/xr/BasicTypes.h
  355. GChblkmap.o: ../INCLUDE/xr/Threads.h
  356. GChblkmap.o: ../INCLUDE/xr/ThreadsInlines.h
  357. GChblkmap.o: ../INCLUDE/xr/ThreadsSharedMem.h
  358. GChblkmap.o: ../INCLUDE/xr/ThreadsBackdoor.h
  359. GChblkmap.o: /usr/include/sys/time.h
  360. GChblkmap.o: /usr/include/time.h
  361. GChblkmap.o: /usr/include/sys/stdtypes.h
  362. GChblkmap.o: /usr/include/sys/param.h
  363. GChblkmap.o: /usr/include/machine/param.h
  364. GChblkmap.o: /usr/include/sys/signal.h
  365. GChblkmap.o: /usr/include/vm/faultcode.h
  366. GChblkmap.o: /usr/include/sys/stdtypes.h
  367. GChblkmap.o: /usr/include/sys/types.h
  368. GChblkmap.o: /usr/include/sys/stdtypes.h
  369. GChblkmap.o: /usr/include/sys/sysmacros.h
  370. GChdr_alloc.o: GChdr_alloc.c
  371. GChdr_alloc.o: INCLUDE/xr/GCPrivate.h
  372. GChdr_alloc.o: INCLUDE/xr/GC.h
  373. GChdr_alloc.o: ../INCLUDE/xr/BasicTypes.h
  374. GChdr_alloc.o: ../INCLUDE/xr/Threads.h
  375. GChdr_alloc.o: ../INCLUDE/xr/ThreadsInlines.h
  376. GChdr_alloc.o: ../INCLUDE/xr/ThreadsSharedMem.h
  377. GChdr_alloc.o: ../INCLUDE/xr/ThreadsBackdoor.h
  378. GChdr_alloc.o: /usr/include/sys/time.h
  379. GChdr_alloc.o: /usr/include/time.h
  380. GChdr_alloc.o: /usr/include/sys/stdtypes.h
  381. GChdr_alloc.o: /usr/include/sys/param.h
  382. GChdr_alloc.o: /usr/include/machine/param.h
  383. GChdr_alloc.o: /usr/include/sys/signal.h
  384. GChdr_alloc.o: /usr/include/vm/faultcode.h
  385. GChdr_alloc.o: /usr/include/sys/stdtypes.h
  386. GChdr_alloc.o: /usr/include/sys/types.h
  387. GChdr_alloc.o: /usr/include/sys/stdtypes.h
  388. GChdr_alloc.o: /usr/include/sys/sysmacros.h
  389. GChdr_alloc.o: /usr/include/sys/mman.h
  390. GChdr_alloc.o: /usr/include/sys/types.h
  391. GCmark_rescuers.o: GCmark_rescuers.c
  392. GCmark_rescuers.o: INCLUDE/xr/GCPrivate.h
  393. GCmark_rescuers.o: INCLUDE/xr/GC.h
  394. GCmark_rescuers.o: ../INCLUDE/xr/BasicTypes.h
  395. GCmark_rescuers.o: ../INCLUDE/xr/Threads.h
  396. GCmark_rescuers.o: ../INCLUDE/xr/ThreadsInlines.h
  397. GCmark_rescuers.o: ../INCLUDE/xr/ThreadsSharedMem.h
  398. GCmark_rescuers.o: ../INCLUDE/xr/ThreadsBackdoor.h
  399. GCmark_rescuers.o: /usr/include/sys/time.h
  400. GCmark_rescuers.o: /usr/include/time.h
  401. GCmark_rescuers.o: /usr/include/sys/stdtypes.h
  402. GCmark_rescuers.o: /usr/include/sys/param.h
  403. GCmark_rescuers.o: /usr/include/machine/param.h
  404. GCmark_rescuers.o: /usr/include/sys/signal.h
  405. GCmark_rescuers.o: /usr/include/vm/faultcode.h
  406. GCmark_rescuers.o: /usr/include/sys/stdtypes.h
  407. GCmark_rescuers.o: /usr/include/sys/types.h
  408. GCmark_rescuers.o: /usr/include/sys/stdtypes.h
  409. GCmark_rescuers.o: /usr/include/sys/sysmacros.h
  410. GCmark_roots.o: GCmark_roots.c
  411. GCmark_roots.o: INCLUDE/xr/GCPrivate.h
  412. GCmark_roots.o: INCLUDE/xr/GC.h
  413. GCmark_roots.o: ../INCLUDE/xr/BasicTypes.h
  414. GCmark_roots.o: ../INCLUDE/xr/Threads.h
  415. GCmark_roots.o: ../INCLUDE/xr/ThreadsInlines.h
  416. GCmark_roots.o: ../INCLUDE/xr/ThreadsSharedMem.h
  417. GCmark_roots.o: ../INCLUDE/xr/ThreadsBackdoor.h
  418. GCmark_roots.o: /usr/include/sys/time.h
  419. GCmark_roots.o: /usr/include/time.h
  420. GCmark_roots.o: /usr/include/sys/stdtypes.h
  421. GCmark_roots.o: /usr/include/sys/param.h
  422. GCmark_roots.o: /usr/include/machine/param.h
  423. GCmark_roots.o: /usr/include/sys/signal.h
  424. GCmark_roots.o: /usr/include/vm/faultcode.h
  425. GCmark_roots.o: /usr/include/sys/stdtypes.h
  426. GCmark_roots.o: /usr/include/sys/types.h
  427. GCmark_roots.o: /usr/include/sys/stdtypes.h
  428. GCmark_roots.o: /usr/include/sys/sysmacros.h
  429. GCCommands.o: GCCommands.c
  430. GCCommands.o: INCLUDE/xr/GC.h
  431. GCCommands.o: ../INCLUDE/xr/BasicTypes.h
  432. GCCommands.o: ../INCLUDE/xr/Threads.h
  433. GCCommands.o: ../INCLUDE/xr/ThreadsInlines.h
  434. GCCommands.o: ../INCLUDE/xr/ThreadsSharedMem.h
  435. GCCommands.o: ../INCLUDE/xr/CommandLine.h
  436. GCCommands.o: ../INCLUDE/xr/CommandLoop.h
  437. GCdirty.o: GCdirty.c
  438. GCdirty.o: INCLUDE/xr/GCPrivate.h
  439. GCdirty.o: INCLUDE/xr/GC.h
  440. GCdirty.o: ../INCLUDE/xr/BasicTypes.h
  441. GCdirty.o: ../INCLUDE/xr/Threads.h
  442. GCdirty.o: ../INCLUDE/xr/ThreadsInlines.h
  443. GCdirty.o: ../INCLUDE/xr/ThreadsSharedMem.h
  444. GCdirty.o: ../INCLUDE/xr/ThreadsBackdoor.h
  445. GCdirty.o: /usr/include/sys/time.h
  446. GCdirty.o: /usr/include/time.h
  447. GCdirty.o: /usr/include/sys/stdtypes.h
  448. GCdirty.o: /usr/include/sys/param.h
  449. GCdirty.o: /usr/include/machine/param.h
  450. GCdirty.o: /usr/include/sys/signal.h
  451. GCdirty.o: /usr/include/vm/faultcode.h
  452. GCdirty.o: /usr/include/sys/stdtypes.h
  453. GCdirty.o: /usr/include/sys/types.h
  454. GCdirty.o: /usr/include/sys/stdtypes.h
  455. GCdirty.o: /usr/include/sys/sysmacros.h
  456. GCdirty.o: INCLUDE/xr/GCVirtualDirty.h
  457. GCdirty.o: ../INCLUDE/xr/Threads.h
  458. GCstrategy.o: GCstrategy.c
  459. GCstrategy.o: INCLUDE/xr/GCPrivate.h
  460. GCstrategy.o: INCLUDE/xr/GC.h
  461. GCstrategy.o: ../INCLUDE/xr/BasicTypes.h
  462. GCstrategy.o: ../INCLUDE/xr/Threads.h
  463. GCstrategy.o: ../INCLUDE/xr/ThreadsInlines.h
  464. GCstrategy.o: ../INCLUDE/xr/ThreadsSharedMem.h
  465. GCstrategy.o: ../INCLUDE/xr/ThreadsBackdoor.h
  466. GCstrategy.o: /usr/include/sys/time.h
  467. GCstrategy.o: /usr/include/time.h
  468. GCstrategy.o: /usr/include/sys/stdtypes.h
  469. GCstrategy.o: /usr/include/sys/param.h
  470. GCstrategy.o: /usr/include/machine/param.h
  471. GCstrategy.o: /usr/include/sys/signal.h
  472. GCstrategy.o: /usr/include/vm/faultcode.h
  473. GCstrategy.o: /usr/include/sys/stdtypes.h
  474. GCstrategy.o: /usr/include/sys/types.h
  475. GCstrategy.o: /usr/include/sys/stdtypes.h
  476. GCstrategy.o: /usr/include/sys/sysmacros.h
  477. GCcollector.o: GCcollector.c
  478. GCcollector.o: /usr/include/signal.h
  479. GCcollector.o: /usr/include/sys/signal.h
  480. GCcollector.o: /usr/include/vm/faultcode.h
  481. GCcollector.o: /usr/include/sys/stdtypes.h
  482. GCcollector.o: /usr/include/sys/types.h
  483. GCcollector.o: /usr/include/sys/stdtypes.h
  484. GCcollector.o: /usr/include/sys/sysmacros.h
  485. GCcollector.o: /usr/include/sys/times.h
  486. GCcollector.o: /usr/include/sys/types.h
  487. GCcollector.o: /usr/include/sys/timeb.h
  488. GCcollector.o: ../INCLUDE/xr/ThreadsMsg.h
  489. GCcollector.o: ../INCLUDE/xr/Threads.h
  490. GCcollector.o: ../INCLUDE/xr/BasicTypes.h
  491. GCcollector.o: ../INCLUDE/xr/ThreadsInlines.h
  492. GCcollector.o: ../INCLUDE/xr/ThreadsSharedMem.h
  493. GCcollector.o: INCLUDE/xr/GCPrivate.h
  494. GCcollector.o: INCLUDE/xr/GC.h
  495. GCcollector.o: ../INCLUDE/xr/ThreadsBackdoor.h
  496. GCcollector.o: /usr/include/sys/time.h
  497. GCcollector.o: /usr/include/time.h
  498. GCcollector.o: /usr/include/sys/stdtypes.h
  499. GCcollector.o: /usr/include/sys/param.h
  500. GCcollector.o: /usr/include/machine/param.h
  501. GCcollector.o: /usr/include/sys/signal.h
  502. GCcollector.o: /usr/include/sys/types.h
  503. GCVirtualDirty.o: GCVirtualDirty.c
  504. GCVirtualDirty.o: INCLUDE/xr/GCVirtualDirty.h
  505. GCVirtualDirty.o: ../INCLUDE/xr/Threads.h
  506. GCVirtualDirty.o: ../INCLUDE/xr/BasicTypes.h
  507. GCVirtualDirty.o: ../INCLUDE/xr/ThreadsInlines.h
  508. GCVirtualDirty.o: ../INCLUDE/xr/ThreadsSharedMem.h
  509. GCVirtualDirty.o: INCLUDE/xr/GCPrivate.h
  510. GCVirtualDirty.o: INCLUDE/xr/GC.h
  511. GCVirtualDirty.o: ../INCLUDE/xr/ThreadsBackdoor.h
  512. GCVirtualDirty.o: /usr/include/sys/time.h
  513. GCVirtualDirty.o: /usr/include/time.h
  514. GCVirtualDirty.o: /usr/include/sys/stdtypes.h
  515. GCVirtualDirty.o: /usr/include/sys/param.h
  516. GCVirtualDirty.o: /usr/include/machine/param.h
  517. GCVirtualDirty.o: /usr/include/sys/signal.h
  518. GCVirtualDirty.o: /usr/include/vm/faultcode.h
  519. GCVirtualDirty.o: /usr/include/sys/stdtypes.h
  520. GCVirtualDirty.o: /usr/include/sys/types.h
  521. GCVirtualDirty.o: /usr/include/sys/stdtypes.h
  522. GCVirtualDirty.o: /usr/include/sys/sysmacros.h
  523. GCVirtualDirty.o: ../INCLUDE/xr/Threads.h
  524. GCVirtualDirty.o: ../INCLUDE/xr/ThreadsSchedCtl.h
  525. GCVirtualDirty.o: ../INCLUDE/xr/BasicTypes.h
  526. GCVirtualDirty.o: ../INCLUDE/xr/ThreadsMsg.h
  527. GCVirtualDirty.o: ../INCLUDE/xr/UIO.h
  528. GCVirtualDirty.o: /usr/include/sys/types.h
  529. GCVirtualDirty.o: /usr/include/sys/file.h
  530. GCVirtualDirty.o: /usr/include/sys/types.h
  531. GCVirtualDirty.o: /usr/include/sys/fcntlcom.h
  532. GCVirtualDirty.o: /usr/include/sys/stdtypes.h
  533. GCVirtualDirty.o: /usr/include/sys/stat.h
  534. GCVirtualDirty.o: /usr/include/sys/types.h
  535. GCVirtualDirty.o: /usr/include/sys/stat.h
  536. GCVirtualDirty.o: INCLUDE/xr/GC.h
  537. GCVirtualDirty.o: INCLUDE/xr/GCPrivate.h
  538. GCVirtualDirty.o: /usr/include/sys/signal.h
  539. GCVirtualDirty.o: /usr/include/sys/mman.h
  540. GCVirtualDirty.o: /usr/include/sys/types.h
  541. GCVirtualDirty.o: /usr/include/errno.h
  542. GCVirtualDirty.o: /usr/include/sys/errno.h
  543. GCblack_list.o: GCblack_list.c
  544. GCblack_list.o: INCLUDE/xr/GCPrivate.h
  545. GCblack_list.o: INCLUDE/xr/GC.h
  546. GCblack_list.o: ../INCLUDE/xr/BasicTypes.h
  547. GCblack_list.o: ../INCLUDE/xr/Threads.h
  548. GCblack_list.o: ../INCLUDE/xr/ThreadsInlines.h
  549. GCblack_list.o: ../INCLUDE/xr/ThreadsSharedMem.h
  550. GCblack_list.o: ../INCLUDE/xr/ThreadsBackdoor.h
  551. GCblack_list.o: /usr/include/sys/time.h
  552. GCblack_list.o: /usr/include/time.h
  553. GCblack_list.o: /usr/include/sys/stdtypes.h
  554. GCblack_list.o: /usr/include/sys/param.h
  555. GCblack_list.o: /usr/include/machine/param.h
  556. GCblack_list.o: /usr/include/sys/signal.h
  557. GCblack_list.o: /usr/include/vm/faultcode.h
  558. GCblack_list.o: /usr/include/sys/stdtypes.h
  559. GCblack_list.o: /usr/include/sys/types.h
  560. GCblack_list.o: /usr/include/sys/stdtypes.h
  561. GCblack_list.o: /usr/include/sys/sysmacros.h
  562. GCptr_test.o: GCptr_test.c
  563. GCptr_test.o: INCLUDE/xr/GC.h
  564. GCptr_test.o: ../INCLUDE/xr/BasicTypes.h
  565. GCptr_test.o: ../INCLUDE/xr/Threads.h
  566. GCptr_test.o: ../INCLUDE/xr/ThreadsInlines.h
  567. GCptr_test.o: ../INCLUDE/xr/ThreadsSharedMem.h
  568. GCptr_test.o: INCLUDE/xr/GCPrivate.h
  569. GCptr_test.o: INCLUDE/xr/GC.h
  570. GCptr_test.o: ../INCLUDE/xr/ThreadsBackdoor.h
  571. GCptr_test.o: /usr/include/sys/time.h
  572. GCptr_test.o: /usr/include/time.h
  573. GCptr_test.o: /usr/include/sys/stdtypes.h
  574. GCptr_test.o: /usr/include/sys/param.h
  575. GCptr_test.o: /usr/include/machine/param.h
  576. GCptr_test.o: /usr/include/sys/signal.h
  577. GCptr_test.o: /usr/include/vm/faultcode.h
  578. GCptr_test.o: /usr/include/sys/stdtypes.h
  579. GCptr_test.o: /usr/include/sys/types.h
  580. GCptr_test.o: /usr/include/sys/stdtypes.h
  581. GCptr_test.o: /usr/include/sys/sysmacros.h
  582. GCptr_test.o: ./GCcheck_ptr.c
  583. GCenum_objs.o: GCenum_objs.c
  584. GCenum_objs.o: ../INCLUDE/xr/Threads.h
  585. GCenum_objs.o: ../INCLUDE/xr/BasicTypes.h
  586. GCenum_objs.o: ../INCLUDE/xr/ThreadsInlines.h
  587. GCenum_objs.o: ../INCLUDE/xr/ThreadsSharedMem.h
  588. GCenum_objs.o: INCLUDE/xr/GCPrivate.h
  589. GCenum_objs.o: INCLUDE/xr/GC.h
  590. GCenum_objs.o: ../INCLUDE/xr/ThreadsBackdoor.h
  591. GCenum_objs.o: /usr/include/sys/time.h
  592. GCenum_objs.o: /usr/include/time.h
  593. GCenum_objs.o: /usr/include/sys/stdtypes.h
  594. GCenum_objs.o: /usr/include/sys/param.h
  595. GCenum_objs.o: /usr/include/machine/param.h
  596. GCenum_objs.o: /usr/include/sys/signal.h
  597. GCenum_objs.o: /usr/include/vm/faultcode.h
  598. GCenum_objs.o: /usr/include/sys/stdtypes.h
  599. GCenum_objs.o: /usr/include/sys/types.h
  600. GCenum_objs.o: /usr/include/sys/stdtypes.h
  601. GCenum_objs.o: /usr/include/sys/sysmacros.h
  602. GCenum_objs.o: ../INCLUDE/xr/ThreadsSchedCtl.h
  603. GCenum_objs.o: ../INCLUDE/xr/BasicTypes.h
  604. GCenum_objs.o: INCLUDE/xr/GCenum_objs.h
  605.